663684d2135add8feb767fa8d5a498460f95a25c,src/com/rit/sucy/chat/ChatData.java,ChatData,updateDisplayName,#,254

Before Change


        if (name.length() > 0) name += " ";

        // Set the display name to the prefixes plus the regular display name
        Bukkit.getPlayer(playerName).setDisplayName(
                name + ChatColor.WHITE + displayName);
    }

    /**

After Change


        // Set the display name to the prefixes plus the regular display name
        Player player = Bukkit.getPlayer(playerName);
        if (player != null)
            player.setDisplayName(
                name + ChatColor.WHITE + displayName);
    }

    /**